home *** CD-ROM | disk | FTP | other *** search
/ PC World 1999 October / PCWorld_1999-10_cd1.bin / Software / TemaCD / RCEdit / RCEdit.CAB / Status Message.js < prev    next >
Text File  |  1998-06-05  |  380b  |  20 lines

  1. // declare timer variable for conditional compare
  2. myID_stat = null;
  3.  
  4. // Clear window stat messages after x seconds
  5.  
  6.     function clearstat() {
  7.         window.status="";
  8.     }
  9.  
  10. // Display stat message
  11.  
  12.     function statmsg(txt) {
  13.         if (myID_stat != null)
  14.         {
  15.             clearTimeout(myID_stat);
  16.         }
  17.         window.status = txt;
  18.         myID_stat = setTimeout("clearstat()",1500);
  19.         return true;
  20.     }